Left Termination of the query pattern insert_in_3(a, g, a) w.r.t. the given Prolog program could successfully be proven:



Prolog
  ↳ PrologToPiTRSProof

Clauses:

insert(X, void, tree(X, void, void)).
insert(X, tree(X, Left, Right), tree(X, Left, Right)).
insert(X, tree(Y, Left, Right), tree(Y, Left1, Right)) :- ','(less(X, Y), insert(X, Left, Left1)).
insert(X, tree(Y, Left, Right), tree(Y, Left, Right1)) :- ','(less(Y, X), insert(X, Right, Right1)).
less(0, s(X)).
less(s(X), s(Y)) :- less(X, Y).

Queries:

insert(a,g,a).

We use the technique of [30]. With regard to the inferred argument filtering the predicates were used in the following modes:
insert_in: (f,b,f) (b,b,f)
less_in: (f,b) (b,b) (b,f)
Transforming Prolog into the following Term Rewriting System:
Pi-finite rewrite system:
The TRS R consists of the following rules:

insert_in_aga(X, void, tree(X, void, void)) → insert_out_aga(X, void, tree(X, void, void))
insert_in_aga(X, tree(X, Left, Right), tree(X, Left, Right)) → insert_out_aga(X, tree(X, Left, Right), tree(X, Left, Right))
insert_in_aga(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U1_aga(X, Y, Left, Right, Left1, less_in_ag(X, Y))
less_in_ag(0, s(X)) → less_out_ag(0, s(X))
less_in_ag(s(X), s(Y)) → U5_ag(X, Y, less_in_ag(X, Y))
U5_ag(X, Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))
U1_aga(X, Y, Left, Right, Left1, less_out_ag(X, Y)) → U2_aga(X, Y, Left, Right, Left1, insert_in_gga(X, Left, Left1))
insert_in_gga(X, void, tree(X, void, void)) → insert_out_gga(X, void, tree(X, void, void))
insert_in_gga(X, tree(X, Left, Right), tree(X, Left, Right)) → insert_out_gga(X, tree(X, Left, Right), tree(X, Left, Right))
insert_in_gga(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U1_gga(X, Y, Left, Right, Left1, less_in_gg(X, Y))
less_in_gg(0, s(X)) → less_out_gg(0, s(X))
less_in_gg(s(X), s(Y)) → U5_gg(X, Y, less_in_gg(X, Y))
U5_gg(X, Y, less_out_gg(X, Y)) → less_out_gg(s(X), s(Y))
U1_gga(X, Y, Left, Right, Left1, less_out_gg(X, Y)) → U2_gga(X, Y, Left, Right, Left1, insert_in_gga(X, Left, Left1))
insert_in_gga(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U3_gga(X, Y, Left, Right, Right1, less_in_gg(Y, X))
U3_gga(X, Y, Left, Right, Right1, less_out_gg(Y, X)) → U4_gga(X, Y, Left, Right, Right1, insert_in_gga(X, Right, Right1))
U4_gga(X, Y, Left, Right, Right1, insert_out_gga(X, Right, Right1)) → insert_out_gga(X, tree(Y, Left, Right), tree(Y, Left, Right1))
U2_gga(X, Y, Left, Right, Left1, insert_out_gga(X, Left, Left1)) → insert_out_gga(X, tree(Y, Left, Right), tree(Y, Left1, Right))
U2_aga(X, Y, Left, Right, Left1, insert_out_gga(X, Left, Left1)) → insert_out_aga(X, tree(Y, Left, Right), tree(Y, Left1, Right))
insert_in_aga(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U3_aga(X, Y, Left, Right, Right1, less_in_ga(Y, X))
less_in_ga(0, s(X)) → less_out_ga(0, s(X))
less_in_ga(s(X), s(Y)) → U5_ga(X, Y, less_in_ga(X, Y))
U5_ga(X, Y, less_out_ga(X, Y)) → less_out_ga(s(X), s(Y))
U3_aga(X, Y, Left, Right, Right1, less_out_ga(Y, X)) → U4_aga(X, Y, Left, Right, Right1, insert_in_aga(X, Right, Right1))
U4_aga(X, Y, Left, Right, Right1, insert_out_aga(X, Right, Right1)) → insert_out_aga(X, tree(Y, Left, Right), tree(Y, Left, Right1))

The argument filtering Pi contains the following mapping:
insert_in_aga(x1, x2, x3)  =  insert_in_aga(x2)
void  =  void
insert_out_aga(x1, x2, x3)  =  insert_out_aga
tree(x1, x2, x3)  =  tree(x1, x2, x3)
U1_aga(x1, x2, x3, x4, x5, x6)  =  U1_aga(x3, x6)
less_in_ag(x1, x2)  =  less_in_ag(x2)
s(x1)  =  s(x1)
less_out_ag(x1, x2)  =  less_out_ag(x1)
U5_ag(x1, x2, x3)  =  U5_ag(x3)
U2_aga(x1, x2, x3, x4, x5, x6)  =  U2_aga(x6)
insert_in_gga(x1, x2, x3)  =  insert_in_gga(x1, x2)
insert_out_gga(x1, x2, x3)  =  insert_out_gga(x3)
U1_gga(x1, x2, x3, x4, x5, x6)  =  U1_gga(x1, x2, x3, x4, x6)
less_in_gg(x1, x2)  =  less_in_gg(x1, x2)
0  =  0
less_out_gg(x1, x2)  =  less_out_gg
U5_gg(x1, x2, x3)  =  U5_gg(x3)
U2_gga(x1, x2, x3, x4, x5, x6)  =  U2_gga(x2, x4, x6)
U3_gga(x1, x2, x3, x4, x5, x6)  =  U3_gga(x1, x2, x3, x4, x6)
U4_gga(x1, x2, x3, x4, x5, x6)  =  U4_gga(x2, x3, x6)
U3_aga(x1, x2, x3, x4, x5, x6)  =  U3_aga(x4, x6)
less_in_ga(x1, x2)  =  less_in_ga(x1)
less_out_ga(x1, x2)  =  less_out_ga
U5_ga(x1, x2, x3)  =  U5_ga(x3)
U4_aga(x1, x2, x3, x4, x5, x6)  =  U4_aga(x6)

Infinitary Constructor Rewriting Termination of PiTRS implies Termination of Prolog



↳ Prolog
  ↳ PrologToPiTRSProof
PiTRS
      ↳ DependencyPairsProof

Pi-finite rewrite system:
The TRS R consists of the following rules:

insert_in_aga(X, void, tree(X, void, void)) → insert_out_aga(X, void, tree(X, void, void))
insert_in_aga(X, tree(X, Left, Right), tree(X, Left, Right)) → insert_out_aga(X, tree(X, Left, Right), tree(X, Left, Right))
insert_in_aga(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U1_aga(X, Y, Left, Right, Left1, less_in_ag(X, Y))
less_in_ag(0, s(X)) → less_out_ag(0, s(X))
less_in_ag(s(X), s(Y)) → U5_ag(X, Y, less_in_ag(X, Y))
U5_ag(X, Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))
U1_aga(X, Y, Left, Right, Left1, less_out_ag(X, Y)) → U2_aga(X, Y, Left, Right, Left1, insert_in_gga(X, Left, Left1))
insert_in_gga(X, void, tree(X, void, void)) → insert_out_gga(X, void, tree(X, void, void))
insert_in_gga(X, tree(X, Left, Right), tree(X, Left, Right)) → insert_out_gga(X, tree(X, Left, Right), tree(X, Left, Right))
insert_in_gga(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U1_gga(X, Y, Left, Right, Left1, less_in_gg(X, Y))
less_in_gg(0, s(X)) → less_out_gg(0, s(X))
less_in_gg(s(X), s(Y)) → U5_gg(X, Y, less_in_gg(X, Y))
U5_gg(X, Y, less_out_gg(X, Y)) → less_out_gg(s(X), s(Y))
U1_gga(X, Y, Left, Right, Left1, less_out_gg(X, Y)) → U2_gga(X, Y, Left, Right, Left1, insert_in_gga(X, Left, Left1))
insert_in_gga(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U3_gga(X, Y, Left, Right, Right1, less_in_gg(Y, X))
U3_gga(X, Y, Left, Right, Right1, less_out_gg(Y, X)) → U4_gga(X, Y, Left, Right, Right1, insert_in_gga(X, Right, Right1))
U4_gga(X, Y, Left, Right, Right1, insert_out_gga(X, Right, Right1)) → insert_out_gga(X, tree(Y, Left, Right), tree(Y, Left, Right1))
U2_gga(X, Y, Left, Right, Left1, insert_out_gga(X, Left, Left1)) → insert_out_gga(X, tree(Y, Left, Right), tree(Y, Left1, Right))
U2_aga(X, Y, Left, Right, Left1, insert_out_gga(X, Left, Left1)) → insert_out_aga(X, tree(Y, Left, Right), tree(Y, Left1, Right))
insert_in_aga(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U3_aga(X, Y, Left, Right, Right1, less_in_ga(Y, X))
less_in_ga(0, s(X)) → less_out_ga(0, s(X))
less_in_ga(s(X), s(Y)) → U5_ga(X, Y, less_in_ga(X, Y))
U5_ga(X, Y, less_out_ga(X, Y)) → less_out_ga(s(X), s(Y))
U3_aga(X, Y, Left, Right, Right1, less_out_ga(Y, X)) → U4_aga(X, Y, Left, Right, Right1, insert_in_aga(X, Right, Right1))
U4_aga(X, Y, Left, Right, Right1, insert_out_aga(X, Right, Right1)) → insert_out_aga(X, tree(Y, Left, Right), tree(Y, Left, Right1))

The argument filtering Pi contains the following mapping:
insert_in_aga(x1, x2, x3)  =  insert_in_aga(x2)
void  =  void
insert_out_aga(x1, x2, x3)  =  insert_out_aga
tree(x1, x2, x3)  =  tree(x1, x2, x3)
U1_aga(x1, x2, x3, x4, x5, x6)  =  U1_aga(x3, x6)
less_in_ag(x1, x2)  =  less_in_ag(x2)
s(x1)  =  s(x1)
less_out_ag(x1, x2)  =  less_out_ag(x1)
U5_ag(x1, x2, x3)  =  U5_ag(x3)
U2_aga(x1, x2, x3, x4, x5, x6)  =  U2_aga(x6)
insert_in_gga(x1, x2, x3)  =  insert_in_gga(x1, x2)
insert_out_gga(x1, x2, x3)  =  insert_out_gga(x3)
U1_gga(x1, x2, x3, x4, x5, x6)  =  U1_gga(x1, x2, x3, x4, x6)
less_in_gg(x1, x2)  =  less_in_gg(x1, x2)
0  =  0
less_out_gg(x1, x2)  =  less_out_gg
U5_gg(x1, x2, x3)  =  U5_gg(x3)
U2_gga(x1, x2, x3, x4, x5, x6)  =  U2_gga(x2, x4, x6)
U3_gga(x1, x2, x3, x4, x5, x6)  =  U3_gga(x1, x2, x3, x4, x6)
U4_gga(x1, x2, x3, x4, x5, x6)  =  U4_gga(x2, x3, x6)
U3_aga(x1, x2, x3, x4, x5, x6)  =  U3_aga(x4, x6)
less_in_ga(x1, x2)  =  less_in_ga(x1)
less_out_ga(x1, x2)  =  less_out_ga
U5_ga(x1, x2, x3)  =  U5_ga(x3)
U4_aga(x1, x2, x3, x4, x5, x6)  =  U4_aga(x6)


Using Dependency Pairs [1,30] we result in the following initial DP problem:
Pi DP problem:
The TRS P consists of the following rules:

INSERT_IN_AGA(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U1_AGA(X, Y, Left, Right, Left1, less_in_ag(X, Y))
INSERT_IN_AGA(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → LESS_IN_AG(X, Y)
LESS_IN_AG(s(X), s(Y)) → U5_AG(X, Y, less_in_ag(X, Y))
LESS_IN_AG(s(X), s(Y)) → LESS_IN_AG(X, Y)
U1_AGA(X, Y, Left, Right, Left1, less_out_ag(X, Y)) → U2_AGA(X, Y, Left, Right, Left1, insert_in_gga(X, Left, Left1))
U1_AGA(X, Y, Left, Right, Left1, less_out_ag(X, Y)) → INSERT_IN_GGA(X, Left, Left1)
INSERT_IN_GGA(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U1_GGA(X, Y, Left, Right, Left1, less_in_gg(X, Y))
INSERT_IN_GGA(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → LESS_IN_GG(X, Y)
LESS_IN_GG(s(X), s(Y)) → U5_GG(X, Y, less_in_gg(X, Y))
LESS_IN_GG(s(X), s(Y)) → LESS_IN_GG(X, Y)
U1_GGA(X, Y, Left, Right, Left1, less_out_gg(X, Y)) → U2_GGA(X, Y, Left, Right, Left1, insert_in_gga(X, Left, Left1))
U1_GGA(X, Y, Left, Right, Left1, less_out_gg(X, Y)) → INSERT_IN_GGA(X, Left, Left1)
INSERT_IN_GGA(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U3_GGA(X, Y, Left, Right, Right1, less_in_gg(Y, X))
INSERT_IN_GGA(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → LESS_IN_GG(Y, X)
U3_GGA(X, Y, Left, Right, Right1, less_out_gg(Y, X)) → U4_GGA(X, Y, Left, Right, Right1, insert_in_gga(X, Right, Right1))
U3_GGA(X, Y, Left, Right, Right1, less_out_gg(Y, X)) → INSERT_IN_GGA(X, Right, Right1)
INSERT_IN_AGA(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U3_AGA(X, Y, Left, Right, Right1, less_in_ga(Y, X))
INSERT_IN_AGA(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → LESS_IN_GA(Y, X)
LESS_IN_GA(s(X), s(Y)) → U5_GA(X, Y, less_in_ga(X, Y))
LESS_IN_GA(s(X), s(Y)) → LESS_IN_GA(X, Y)
U3_AGA(X, Y, Left, Right, Right1, less_out_ga(Y, X)) → U4_AGA(X, Y, Left, Right, Right1, insert_in_aga(X, Right, Right1))
U3_AGA(X, Y, Left, Right, Right1, less_out_ga(Y, X)) → INSERT_IN_AGA(X, Right, Right1)

The TRS R consists of the following rules:

insert_in_aga(X, void, tree(X, void, void)) → insert_out_aga(X, void, tree(X, void, void))
insert_in_aga(X, tree(X, Left, Right), tree(X, Left, Right)) → insert_out_aga(X, tree(X, Left, Right), tree(X, Left, Right))
insert_in_aga(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U1_aga(X, Y, Left, Right, Left1, less_in_ag(X, Y))
less_in_ag(0, s(X)) → less_out_ag(0, s(X))
less_in_ag(s(X), s(Y)) → U5_ag(X, Y, less_in_ag(X, Y))
U5_ag(X, Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))
U1_aga(X, Y, Left, Right, Left1, less_out_ag(X, Y)) → U2_aga(X, Y, Left, Right, Left1, insert_in_gga(X, Left, Left1))
insert_in_gga(X, void, tree(X, void, void)) → insert_out_gga(X, void, tree(X, void, void))
insert_in_gga(X, tree(X, Left, Right), tree(X, Left, Right)) → insert_out_gga(X, tree(X, Left, Right), tree(X, Left, Right))
insert_in_gga(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U1_gga(X, Y, Left, Right, Left1, less_in_gg(X, Y))
less_in_gg(0, s(X)) → less_out_gg(0, s(X))
less_in_gg(s(X), s(Y)) → U5_gg(X, Y, less_in_gg(X, Y))
U5_gg(X, Y, less_out_gg(X, Y)) → less_out_gg(s(X), s(Y))
U1_gga(X, Y, Left, Right, Left1, less_out_gg(X, Y)) → U2_gga(X, Y, Left, Right, Left1, insert_in_gga(X, Left, Left1))
insert_in_gga(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U3_gga(X, Y, Left, Right, Right1, less_in_gg(Y, X))
U3_gga(X, Y, Left, Right, Right1, less_out_gg(Y, X)) → U4_gga(X, Y, Left, Right, Right1, insert_in_gga(X, Right, Right1))
U4_gga(X, Y, Left, Right, Right1, insert_out_gga(X, Right, Right1)) → insert_out_gga(X, tree(Y, Left, Right), tree(Y, Left, Right1))
U2_gga(X, Y, Left, Right, Left1, insert_out_gga(X, Left, Left1)) → insert_out_gga(X, tree(Y, Left, Right), tree(Y, Left1, Right))
U2_aga(X, Y, Left, Right, Left1, insert_out_gga(X, Left, Left1)) → insert_out_aga(X, tree(Y, Left, Right), tree(Y, Left1, Right))
insert_in_aga(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U3_aga(X, Y, Left, Right, Right1, less_in_ga(Y, X))
less_in_ga(0, s(X)) → less_out_ga(0, s(X))
less_in_ga(s(X), s(Y)) → U5_ga(X, Y, less_in_ga(X, Y))
U5_ga(X, Y, less_out_ga(X, Y)) → less_out_ga(s(X), s(Y))
U3_aga(X, Y, Left, Right, Right1, less_out_ga(Y, X)) → U4_aga(X, Y, Left, Right, Right1, insert_in_aga(X, Right, Right1))
U4_aga(X, Y, Left, Right, Right1, insert_out_aga(X, Right, Right1)) → insert_out_aga(X, tree(Y, Left, Right), tree(Y, Left, Right1))

The argument filtering Pi contains the following mapping:
insert_in_aga(x1, x2, x3)  =  insert_in_aga(x2)
void  =  void
insert_out_aga(x1, x2, x3)  =  insert_out_aga
tree(x1, x2, x3)  =  tree(x1, x2, x3)
U1_aga(x1, x2, x3, x4, x5, x6)  =  U1_aga(x3, x6)
less_in_ag(x1, x2)  =  less_in_ag(x2)
s(x1)  =  s(x1)
less_out_ag(x1, x2)  =  less_out_ag(x1)
U5_ag(x1, x2, x3)  =  U5_ag(x3)
U2_aga(x1, x2, x3, x4, x5, x6)  =  U2_aga(x6)
insert_in_gga(x1, x2, x3)  =  insert_in_gga(x1, x2)
insert_out_gga(x1, x2, x3)  =  insert_out_gga(x3)
U1_gga(x1, x2, x3, x4, x5, x6)  =  U1_gga(x1, x2, x3, x4, x6)
less_in_gg(x1, x2)  =  less_in_gg(x1, x2)
0  =  0
less_out_gg(x1, x2)  =  less_out_gg
U5_gg(x1, x2, x3)  =  U5_gg(x3)
U2_gga(x1, x2, x3, x4, x5, x6)  =  U2_gga(x2, x4, x6)
U3_gga(x1, x2, x3, x4, x5, x6)  =  U3_gga(x1, x2, x3, x4, x6)
U4_gga(x1, x2, x3, x4, x5, x6)  =  U4_gga(x2, x3, x6)
U3_aga(x1, x2, x3, x4, x5, x6)  =  U3_aga(x4, x6)
less_in_ga(x1, x2)  =  less_in_ga(x1)
less_out_ga(x1, x2)  =  less_out_ga
U5_ga(x1, x2, x3)  =  U5_ga(x3)
U4_aga(x1, x2, x3, x4, x5, x6)  =  U4_aga(x6)
U5_GG(x1, x2, x3)  =  U5_GG(x3)
U4_AGA(x1, x2, x3, x4, x5, x6)  =  U4_AGA(x6)
U5_GA(x1, x2, x3)  =  U5_GA(x3)
U2_AGA(x1, x2, x3, x4, x5, x6)  =  U2_AGA(x6)
U5_AG(x1, x2, x3)  =  U5_AG(x3)
LESS_IN_GA(x1, x2)  =  LESS_IN_GA(x1)
LESS_IN_AG(x1, x2)  =  LESS_IN_AG(x2)
U1_AGA(x1, x2, x3, x4, x5, x6)  =  U1_AGA(x3, x6)
U3_AGA(x1, x2, x3, x4, x5, x6)  =  U3_AGA(x4, x6)
U1_GGA(x1, x2, x3, x4, x5, x6)  =  U1_GGA(x1, x2, x3, x4, x6)
LESS_IN_GG(x1, x2)  =  LESS_IN_GG(x1, x2)
INSERT_IN_GGA(x1, x2, x3)  =  INSERT_IN_GGA(x1, x2)
U2_GGA(x1, x2, x3, x4, x5, x6)  =  U2_GGA(x2, x4, x6)
U4_GGA(x1, x2, x3, x4, x5, x6)  =  U4_GGA(x2, x3, x6)
U3_GGA(x1, x2, x3, x4, x5, x6)  =  U3_GGA(x1, x2, x3, x4, x6)
INSERT_IN_AGA(x1, x2, x3)  =  INSERT_IN_AGA(x2)

We have to consider all (P,R,Pi)-chains

↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
PiDP
          ↳ DependencyGraphProof

Pi DP problem:
The TRS P consists of the following rules:

INSERT_IN_AGA(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U1_AGA(X, Y, Left, Right, Left1, less_in_ag(X, Y))
INSERT_IN_AGA(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → LESS_IN_AG(X, Y)
LESS_IN_AG(s(X), s(Y)) → U5_AG(X, Y, less_in_ag(X, Y))
LESS_IN_AG(s(X), s(Y)) → LESS_IN_AG(X, Y)
U1_AGA(X, Y, Left, Right, Left1, less_out_ag(X, Y)) → U2_AGA(X, Y, Left, Right, Left1, insert_in_gga(X, Left, Left1))
U1_AGA(X, Y, Left, Right, Left1, less_out_ag(X, Y)) → INSERT_IN_GGA(X, Left, Left1)
INSERT_IN_GGA(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U1_GGA(X, Y, Left, Right, Left1, less_in_gg(X, Y))
INSERT_IN_GGA(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → LESS_IN_GG(X, Y)
LESS_IN_GG(s(X), s(Y)) → U5_GG(X, Y, less_in_gg(X, Y))
LESS_IN_GG(s(X), s(Y)) → LESS_IN_GG(X, Y)
U1_GGA(X, Y, Left, Right, Left1, less_out_gg(X, Y)) → U2_GGA(X, Y, Left, Right, Left1, insert_in_gga(X, Left, Left1))
U1_GGA(X, Y, Left, Right, Left1, less_out_gg(X, Y)) → INSERT_IN_GGA(X, Left, Left1)
INSERT_IN_GGA(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U3_GGA(X, Y, Left, Right, Right1, less_in_gg(Y, X))
INSERT_IN_GGA(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → LESS_IN_GG(Y, X)
U3_GGA(X, Y, Left, Right, Right1, less_out_gg(Y, X)) → U4_GGA(X, Y, Left, Right, Right1, insert_in_gga(X, Right, Right1))
U3_GGA(X, Y, Left, Right, Right1, less_out_gg(Y, X)) → INSERT_IN_GGA(X, Right, Right1)
INSERT_IN_AGA(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U3_AGA(X, Y, Left, Right, Right1, less_in_ga(Y, X))
INSERT_IN_AGA(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → LESS_IN_GA(Y, X)
LESS_IN_GA(s(X), s(Y)) → U5_GA(X, Y, less_in_ga(X, Y))
LESS_IN_GA(s(X), s(Y)) → LESS_IN_GA(X, Y)
U3_AGA(X, Y, Left, Right, Right1, less_out_ga(Y, X)) → U4_AGA(X, Y, Left, Right, Right1, insert_in_aga(X, Right, Right1))
U3_AGA(X, Y, Left, Right, Right1, less_out_ga(Y, X)) → INSERT_IN_AGA(X, Right, Right1)

The TRS R consists of the following rules:

insert_in_aga(X, void, tree(X, void, void)) → insert_out_aga(X, void, tree(X, void, void))
insert_in_aga(X, tree(X, Left, Right), tree(X, Left, Right)) → insert_out_aga(X, tree(X, Left, Right), tree(X, Left, Right))
insert_in_aga(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U1_aga(X, Y, Left, Right, Left1, less_in_ag(X, Y))
less_in_ag(0, s(X)) → less_out_ag(0, s(X))
less_in_ag(s(X), s(Y)) → U5_ag(X, Y, less_in_ag(X, Y))
U5_ag(X, Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))
U1_aga(X, Y, Left, Right, Left1, less_out_ag(X, Y)) → U2_aga(X, Y, Left, Right, Left1, insert_in_gga(X, Left, Left1))
insert_in_gga(X, void, tree(X, void, void)) → insert_out_gga(X, void, tree(X, void, void))
insert_in_gga(X, tree(X, Left, Right), tree(X, Left, Right)) → insert_out_gga(X, tree(X, Left, Right), tree(X, Left, Right))
insert_in_gga(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U1_gga(X, Y, Left, Right, Left1, less_in_gg(X, Y))
less_in_gg(0, s(X)) → less_out_gg(0, s(X))
less_in_gg(s(X), s(Y)) → U5_gg(X, Y, less_in_gg(X, Y))
U5_gg(X, Y, less_out_gg(X, Y)) → less_out_gg(s(X), s(Y))
U1_gga(X, Y, Left, Right, Left1, less_out_gg(X, Y)) → U2_gga(X, Y, Left, Right, Left1, insert_in_gga(X, Left, Left1))
insert_in_gga(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U3_gga(X, Y, Left, Right, Right1, less_in_gg(Y, X))
U3_gga(X, Y, Left, Right, Right1, less_out_gg(Y, X)) → U4_gga(X, Y, Left, Right, Right1, insert_in_gga(X, Right, Right1))
U4_gga(X, Y, Left, Right, Right1, insert_out_gga(X, Right, Right1)) → insert_out_gga(X, tree(Y, Left, Right), tree(Y, Left, Right1))
U2_gga(X, Y, Left, Right, Left1, insert_out_gga(X, Left, Left1)) → insert_out_gga(X, tree(Y, Left, Right), tree(Y, Left1, Right))
U2_aga(X, Y, Left, Right, Left1, insert_out_gga(X, Left, Left1)) → insert_out_aga(X, tree(Y, Left, Right), tree(Y, Left1, Right))
insert_in_aga(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U3_aga(X, Y, Left, Right, Right1, less_in_ga(Y, X))
less_in_ga(0, s(X)) → less_out_ga(0, s(X))
less_in_ga(s(X), s(Y)) → U5_ga(X, Y, less_in_ga(X, Y))
U5_ga(X, Y, less_out_ga(X, Y)) → less_out_ga(s(X), s(Y))
U3_aga(X, Y, Left, Right, Right1, less_out_ga(Y, X)) → U4_aga(X, Y, Left, Right, Right1, insert_in_aga(X, Right, Right1))
U4_aga(X, Y, Left, Right, Right1, insert_out_aga(X, Right, Right1)) → insert_out_aga(X, tree(Y, Left, Right), tree(Y, Left, Right1))

The argument filtering Pi contains the following mapping:
insert_in_aga(x1, x2, x3)  =  insert_in_aga(x2)
void  =  void
insert_out_aga(x1, x2, x3)  =  insert_out_aga
tree(x1, x2, x3)  =  tree(x1, x2, x3)
U1_aga(x1, x2, x3, x4, x5, x6)  =  U1_aga(x3, x6)
less_in_ag(x1, x2)  =  less_in_ag(x2)
s(x1)  =  s(x1)
less_out_ag(x1, x2)  =  less_out_ag(x1)
U5_ag(x1, x2, x3)  =  U5_ag(x3)
U2_aga(x1, x2, x3, x4, x5, x6)  =  U2_aga(x6)
insert_in_gga(x1, x2, x3)  =  insert_in_gga(x1, x2)
insert_out_gga(x1, x2, x3)  =  insert_out_gga(x3)
U1_gga(x1, x2, x3, x4, x5, x6)  =  U1_gga(x1, x2, x3, x4, x6)
less_in_gg(x1, x2)  =  less_in_gg(x1, x2)
0  =  0
less_out_gg(x1, x2)  =  less_out_gg
U5_gg(x1, x2, x3)  =  U5_gg(x3)
U2_gga(x1, x2, x3, x4, x5, x6)  =  U2_gga(x2, x4, x6)
U3_gga(x1, x2, x3, x4, x5, x6)  =  U3_gga(x1, x2, x3, x4, x6)
U4_gga(x1, x2, x3, x4, x5, x6)  =  U4_gga(x2, x3, x6)
U3_aga(x1, x2, x3, x4, x5, x6)  =  U3_aga(x4, x6)
less_in_ga(x1, x2)  =  less_in_ga(x1)
less_out_ga(x1, x2)  =  less_out_ga
U5_ga(x1, x2, x3)  =  U5_ga(x3)
U4_aga(x1, x2, x3, x4, x5, x6)  =  U4_aga(x6)
U5_GG(x1, x2, x3)  =  U5_GG(x3)
U4_AGA(x1, x2, x3, x4, x5, x6)  =  U4_AGA(x6)
U5_GA(x1, x2, x3)  =  U5_GA(x3)
U2_AGA(x1, x2, x3, x4, x5, x6)  =  U2_AGA(x6)
U5_AG(x1, x2, x3)  =  U5_AG(x3)
LESS_IN_GA(x1, x2)  =  LESS_IN_GA(x1)
LESS_IN_AG(x1, x2)  =  LESS_IN_AG(x2)
U1_AGA(x1, x2, x3, x4, x5, x6)  =  U1_AGA(x3, x6)
U3_AGA(x1, x2, x3, x4, x5, x6)  =  U3_AGA(x4, x6)
U1_GGA(x1, x2, x3, x4, x5, x6)  =  U1_GGA(x1, x2, x3, x4, x6)
LESS_IN_GG(x1, x2)  =  LESS_IN_GG(x1, x2)
INSERT_IN_GGA(x1, x2, x3)  =  INSERT_IN_GGA(x1, x2)
U2_GGA(x1, x2, x3, x4, x5, x6)  =  U2_GGA(x2, x4, x6)
U4_GGA(x1, x2, x3, x4, x5, x6)  =  U4_GGA(x2, x3, x6)
U3_GGA(x1, x2, x3, x4, x5, x6)  =  U3_GGA(x1, x2, x3, x4, x6)
INSERT_IN_AGA(x1, x2, x3)  =  INSERT_IN_AGA(x2)

We have to consider all (P,R,Pi)-chains
The approximation of the Dependency Graph [30] contains 5 SCCs with 13 less nodes.

↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
PiDP
                ↳ UsableRulesProof
              ↳ PiDP
              ↳ PiDP
              ↳ PiDP
              ↳ PiDP

Pi DP problem:
The TRS P consists of the following rules:

LESS_IN_GA(s(X), s(Y)) → LESS_IN_GA(X, Y)

The TRS R consists of the following rules:

insert_in_aga(X, void, tree(X, void, void)) → insert_out_aga(X, void, tree(X, void, void))
insert_in_aga(X, tree(X, Left, Right), tree(X, Left, Right)) → insert_out_aga(X, tree(X, Left, Right), tree(X, Left, Right))
insert_in_aga(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U1_aga(X, Y, Left, Right, Left1, less_in_ag(X, Y))
less_in_ag(0, s(X)) → less_out_ag(0, s(X))
less_in_ag(s(X), s(Y)) → U5_ag(X, Y, less_in_ag(X, Y))
U5_ag(X, Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))
U1_aga(X, Y, Left, Right, Left1, less_out_ag(X, Y)) → U2_aga(X, Y, Left, Right, Left1, insert_in_gga(X, Left, Left1))
insert_in_gga(X, void, tree(X, void, void)) → insert_out_gga(X, void, tree(X, void, void))
insert_in_gga(X, tree(X, Left, Right), tree(X, Left, Right)) → insert_out_gga(X, tree(X, Left, Right), tree(X, Left, Right))
insert_in_gga(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U1_gga(X, Y, Left, Right, Left1, less_in_gg(X, Y))
less_in_gg(0, s(X)) → less_out_gg(0, s(X))
less_in_gg(s(X), s(Y)) → U5_gg(X, Y, less_in_gg(X, Y))
U5_gg(X, Y, less_out_gg(X, Y)) → less_out_gg(s(X), s(Y))
U1_gga(X, Y, Left, Right, Left1, less_out_gg(X, Y)) → U2_gga(X, Y, Left, Right, Left1, insert_in_gga(X, Left, Left1))
insert_in_gga(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U3_gga(X, Y, Left, Right, Right1, less_in_gg(Y, X))
U3_gga(X, Y, Left, Right, Right1, less_out_gg(Y, X)) → U4_gga(X, Y, Left, Right, Right1, insert_in_gga(X, Right, Right1))
U4_gga(X, Y, Left, Right, Right1, insert_out_gga(X, Right, Right1)) → insert_out_gga(X, tree(Y, Left, Right), tree(Y, Left, Right1))
U2_gga(X, Y, Left, Right, Left1, insert_out_gga(X, Left, Left1)) → insert_out_gga(X, tree(Y, Left, Right), tree(Y, Left1, Right))
U2_aga(X, Y, Left, Right, Left1, insert_out_gga(X, Left, Left1)) → insert_out_aga(X, tree(Y, Left, Right), tree(Y, Left1, Right))
insert_in_aga(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U3_aga(X, Y, Left, Right, Right1, less_in_ga(Y, X))
less_in_ga(0, s(X)) → less_out_ga(0, s(X))
less_in_ga(s(X), s(Y)) → U5_ga(X, Y, less_in_ga(X, Y))
U5_ga(X, Y, less_out_ga(X, Y)) → less_out_ga(s(X), s(Y))
U3_aga(X, Y, Left, Right, Right1, less_out_ga(Y, X)) → U4_aga(X, Y, Left, Right, Right1, insert_in_aga(X, Right, Right1))
U4_aga(X, Y, Left, Right, Right1, insert_out_aga(X, Right, Right1)) → insert_out_aga(X, tree(Y, Left, Right), tree(Y, Left, Right1))

The argument filtering Pi contains the following mapping:
insert_in_aga(x1, x2, x3)  =  insert_in_aga(x2)
void  =  void
insert_out_aga(x1, x2, x3)  =  insert_out_aga
tree(x1, x2, x3)  =  tree(x1, x2, x3)
U1_aga(x1, x2, x3, x4, x5, x6)  =  U1_aga(x3, x6)
less_in_ag(x1, x2)  =  less_in_ag(x2)
s(x1)  =  s(x1)
less_out_ag(x1, x2)  =  less_out_ag(x1)
U5_ag(x1, x2, x3)  =  U5_ag(x3)
U2_aga(x1, x2, x3, x4, x5, x6)  =  U2_aga(x6)
insert_in_gga(x1, x2, x3)  =  insert_in_gga(x1, x2)
insert_out_gga(x1, x2, x3)  =  insert_out_gga(x3)
U1_gga(x1, x2, x3, x4, x5, x6)  =  U1_gga(x1, x2, x3, x4, x6)
less_in_gg(x1, x2)  =  less_in_gg(x1, x2)
0  =  0
less_out_gg(x1, x2)  =  less_out_gg
U5_gg(x1, x2, x3)  =  U5_gg(x3)
U2_gga(x1, x2, x3, x4, x5, x6)  =  U2_gga(x2, x4, x6)
U3_gga(x1, x2, x3, x4, x5, x6)  =  U3_gga(x1, x2, x3, x4, x6)
U4_gga(x1, x2, x3, x4, x5, x6)  =  U4_gga(x2, x3, x6)
U3_aga(x1, x2, x3, x4, x5, x6)  =  U3_aga(x4, x6)
less_in_ga(x1, x2)  =  less_in_ga(x1)
less_out_ga(x1, x2)  =  less_out_ga
U5_ga(x1, x2, x3)  =  U5_ga(x3)
U4_aga(x1, x2, x3, x4, x5, x6)  =  U4_aga(x6)
LESS_IN_GA(x1, x2)  =  LESS_IN_GA(x1)

We have to consider all (P,R,Pi)-chains
For (infinitary) constructor rewriting [30] we can delete all non-usable rules from R.

↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
                ↳ UsableRulesProof
PiDP
                    ↳ PiDPToQDPProof
              ↳ PiDP
              ↳ PiDP
              ↳ PiDP
              ↳ PiDP

Pi DP problem:
The TRS P consists of the following rules:

LESS_IN_GA(s(X), s(Y)) → LESS_IN_GA(X, Y)

R is empty.
The argument filtering Pi contains the following mapping:
s(x1)  =  s(x1)
LESS_IN_GA(x1, x2)  =  LESS_IN_GA(x1)

We have to consider all (P,R,Pi)-chains
Transforming (infinitary) constructor rewriting Pi-DP problem [30] into ordinary QDP problem [15] by application of Pi.

↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
                ↳ UsableRulesProof
                  ↳ PiDP
                    ↳ PiDPToQDPProof
QDP
                        ↳ QDPSizeChangeProof
              ↳ PiDP
              ↳ PiDP
              ↳ PiDP
              ↳ PiDP

Q DP problem:
The TRS P consists of the following rules:

LESS_IN_GA(s(X)) → LESS_IN_GA(X)

R is empty.
Q is empty.
We have to consider all (P,Q,R)-chains.
By using the subterm criterion [20] together with the size-change analysis [32] we have proven that there are no infinite chains for this DP problem.

From the DPs we obtained the following set of size-change graphs:



↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
PiDP
                ↳ UsableRulesProof
              ↳ PiDP
              ↳ PiDP
              ↳ PiDP

Pi DP problem:
The TRS P consists of the following rules:

LESS_IN_GG(s(X), s(Y)) → LESS_IN_GG(X, Y)

The TRS R consists of the following rules:

insert_in_aga(X, void, tree(X, void, void)) → insert_out_aga(X, void, tree(X, void, void))
insert_in_aga(X, tree(X, Left, Right), tree(X, Left, Right)) → insert_out_aga(X, tree(X, Left, Right), tree(X, Left, Right))
insert_in_aga(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U1_aga(X, Y, Left, Right, Left1, less_in_ag(X, Y))
less_in_ag(0, s(X)) → less_out_ag(0, s(X))
less_in_ag(s(X), s(Y)) → U5_ag(X, Y, less_in_ag(X, Y))
U5_ag(X, Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))
U1_aga(X, Y, Left, Right, Left1, less_out_ag(X, Y)) → U2_aga(X, Y, Left, Right, Left1, insert_in_gga(X, Left, Left1))
insert_in_gga(X, void, tree(X, void, void)) → insert_out_gga(X, void, tree(X, void, void))
insert_in_gga(X, tree(X, Left, Right), tree(X, Left, Right)) → insert_out_gga(X, tree(X, Left, Right), tree(X, Left, Right))
insert_in_gga(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U1_gga(X, Y, Left, Right, Left1, less_in_gg(X, Y))
less_in_gg(0, s(X)) → less_out_gg(0, s(X))
less_in_gg(s(X), s(Y)) → U5_gg(X, Y, less_in_gg(X, Y))
U5_gg(X, Y, less_out_gg(X, Y)) → less_out_gg(s(X), s(Y))
U1_gga(X, Y, Left, Right, Left1, less_out_gg(X, Y)) → U2_gga(X, Y, Left, Right, Left1, insert_in_gga(X, Left, Left1))
insert_in_gga(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U3_gga(X, Y, Left, Right, Right1, less_in_gg(Y, X))
U3_gga(X, Y, Left, Right, Right1, less_out_gg(Y, X)) → U4_gga(X, Y, Left, Right, Right1, insert_in_gga(X, Right, Right1))
U4_gga(X, Y, Left, Right, Right1, insert_out_gga(X, Right, Right1)) → insert_out_gga(X, tree(Y, Left, Right), tree(Y, Left, Right1))
U2_gga(X, Y, Left, Right, Left1, insert_out_gga(X, Left, Left1)) → insert_out_gga(X, tree(Y, Left, Right), tree(Y, Left1, Right))
U2_aga(X, Y, Left, Right, Left1, insert_out_gga(X, Left, Left1)) → insert_out_aga(X, tree(Y, Left, Right), tree(Y, Left1, Right))
insert_in_aga(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U3_aga(X, Y, Left, Right, Right1, less_in_ga(Y, X))
less_in_ga(0, s(X)) → less_out_ga(0, s(X))
less_in_ga(s(X), s(Y)) → U5_ga(X, Y, less_in_ga(X, Y))
U5_ga(X, Y, less_out_ga(X, Y)) → less_out_ga(s(X), s(Y))
U3_aga(X, Y, Left, Right, Right1, less_out_ga(Y, X)) → U4_aga(X, Y, Left, Right, Right1, insert_in_aga(X, Right, Right1))
U4_aga(X, Y, Left, Right, Right1, insert_out_aga(X, Right, Right1)) → insert_out_aga(X, tree(Y, Left, Right), tree(Y, Left, Right1))

The argument filtering Pi contains the following mapping:
insert_in_aga(x1, x2, x3)  =  insert_in_aga(x2)
void  =  void
insert_out_aga(x1, x2, x3)  =  insert_out_aga
tree(x1, x2, x3)  =  tree(x1, x2, x3)
U1_aga(x1, x2, x3, x4, x5, x6)  =  U1_aga(x3, x6)
less_in_ag(x1, x2)  =  less_in_ag(x2)
s(x1)  =  s(x1)
less_out_ag(x1, x2)  =  less_out_ag(x1)
U5_ag(x1, x2, x3)  =  U5_ag(x3)
U2_aga(x1, x2, x3, x4, x5, x6)  =  U2_aga(x6)
insert_in_gga(x1, x2, x3)  =  insert_in_gga(x1, x2)
insert_out_gga(x1, x2, x3)  =  insert_out_gga(x3)
U1_gga(x1, x2, x3, x4, x5, x6)  =  U1_gga(x1, x2, x3, x4, x6)
less_in_gg(x1, x2)  =  less_in_gg(x1, x2)
0  =  0
less_out_gg(x1, x2)  =  less_out_gg
U5_gg(x1, x2, x3)  =  U5_gg(x3)
U2_gga(x1, x2, x3, x4, x5, x6)  =  U2_gga(x2, x4, x6)
U3_gga(x1, x2, x3, x4, x5, x6)  =  U3_gga(x1, x2, x3, x4, x6)
U4_gga(x1, x2, x3, x4, x5, x6)  =  U4_gga(x2, x3, x6)
U3_aga(x1, x2, x3, x4, x5, x6)  =  U3_aga(x4, x6)
less_in_ga(x1, x2)  =  less_in_ga(x1)
less_out_ga(x1, x2)  =  less_out_ga
U5_ga(x1, x2, x3)  =  U5_ga(x3)
U4_aga(x1, x2, x3, x4, x5, x6)  =  U4_aga(x6)
LESS_IN_GG(x1, x2)  =  LESS_IN_GG(x1, x2)

We have to consider all (P,R,Pi)-chains
For (infinitary) constructor rewriting [30] we can delete all non-usable rules from R.

↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
              ↳ PiDP
                ↳ UsableRulesProof
PiDP
                    ↳ PiDPToQDPProof
              ↳ PiDP
              ↳ PiDP
              ↳ PiDP

Pi DP problem:
The TRS P consists of the following rules:

LESS_IN_GG(s(X), s(Y)) → LESS_IN_GG(X, Y)

R is empty.
Pi is empty.
We have to consider all (P,R,Pi)-chains
Transforming (infinitary) constructor rewriting Pi-DP problem [30] into ordinary QDP problem [15] by application of Pi.

↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
              ↳ PiDP
                ↳ UsableRulesProof
                  ↳ PiDP
                    ↳ PiDPToQDPProof
QDP
                        ↳ QDPSizeChangeProof
              ↳ PiDP
              ↳ PiDP
              ↳ PiDP

Q DP problem:
The TRS P consists of the following rules:

LESS_IN_GG(s(X), s(Y)) → LESS_IN_GG(X, Y)

R is empty.
Q is empty.
We have to consider all (P,Q,R)-chains.
By using the subterm criterion [20] together with the size-change analysis [32] we have proven that there are no infinite chains for this DP problem.

From the DPs we obtained the following set of size-change graphs:



↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
              ↳ PiDP
PiDP
                ↳ UsableRulesProof
              ↳ PiDP
              ↳ PiDP

Pi DP problem:
The TRS P consists of the following rules:

U1_GGA(X, Y, Left, Right, Left1, less_out_gg(X, Y)) → INSERT_IN_GGA(X, Left, Left1)
U3_GGA(X, Y, Left, Right, Right1, less_out_gg(Y, X)) → INSERT_IN_GGA(X, Right, Right1)
INSERT_IN_GGA(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U3_GGA(X, Y, Left, Right, Right1, less_in_gg(Y, X))
INSERT_IN_GGA(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U1_GGA(X, Y, Left, Right, Left1, less_in_gg(X, Y))

The TRS R consists of the following rules:

insert_in_aga(X, void, tree(X, void, void)) → insert_out_aga(X, void, tree(X, void, void))
insert_in_aga(X, tree(X, Left, Right), tree(X, Left, Right)) → insert_out_aga(X, tree(X, Left, Right), tree(X, Left, Right))
insert_in_aga(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U1_aga(X, Y, Left, Right, Left1, less_in_ag(X, Y))
less_in_ag(0, s(X)) → less_out_ag(0, s(X))
less_in_ag(s(X), s(Y)) → U5_ag(X, Y, less_in_ag(X, Y))
U5_ag(X, Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))
U1_aga(X, Y, Left, Right, Left1, less_out_ag(X, Y)) → U2_aga(X, Y, Left, Right, Left1, insert_in_gga(X, Left, Left1))
insert_in_gga(X, void, tree(X, void, void)) → insert_out_gga(X, void, tree(X, void, void))
insert_in_gga(X, tree(X, Left, Right), tree(X, Left, Right)) → insert_out_gga(X, tree(X, Left, Right), tree(X, Left, Right))
insert_in_gga(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U1_gga(X, Y, Left, Right, Left1, less_in_gg(X, Y))
less_in_gg(0, s(X)) → less_out_gg(0, s(X))
less_in_gg(s(X), s(Y)) → U5_gg(X, Y, less_in_gg(X, Y))
U5_gg(X, Y, less_out_gg(X, Y)) → less_out_gg(s(X), s(Y))
U1_gga(X, Y, Left, Right, Left1, less_out_gg(X, Y)) → U2_gga(X, Y, Left, Right, Left1, insert_in_gga(X, Left, Left1))
insert_in_gga(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U3_gga(X, Y, Left, Right, Right1, less_in_gg(Y, X))
U3_gga(X, Y, Left, Right, Right1, less_out_gg(Y, X)) → U4_gga(X, Y, Left, Right, Right1, insert_in_gga(X, Right, Right1))
U4_gga(X, Y, Left, Right, Right1, insert_out_gga(X, Right, Right1)) → insert_out_gga(X, tree(Y, Left, Right), tree(Y, Left, Right1))
U2_gga(X, Y, Left, Right, Left1, insert_out_gga(X, Left, Left1)) → insert_out_gga(X, tree(Y, Left, Right), tree(Y, Left1, Right))
U2_aga(X, Y, Left, Right, Left1, insert_out_gga(X, Left, Left1)) → insert_out_aga(X, tree(Y, Left, Right), tree(Y, Left1, Right))
insert_in_aga(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U3_aga(X, Y, Left, Right, Right1, less_in_ga(Y, X))
less_in_ga(0, s(X)) → less_out_ga(0, s(X))
less_in_ga(s(X), s(Y)) → U5_ga(X, Y, less_in_ga(X, Y))
U5_ga(X, Y, less_out_ga(X, Y)) → less_out_ga(s(X), s(Y))
U3_aga(X, Y, Left, Right, Right1, less_out_ga(Y, X)) → U4_aga(X, Y, Left, Right, Right1, insert_in_aga(X, Right, Right1))
U4_aga(X, Y, Left, Right, Right1, insert_out_aga(X, Right, Right1)) → insert_out_aga(X, tree(Y, Left, Right), tree(Y, Left, Right1))

The argument filtering Pi contains the following mapping:
insert_in_aga(x1, x2, x3)  =  insert_in_aga(x2)
void  =  void
insert_out_aga(x1, x2, x3)  =  insert_out_aga
tree(x1, x2, x3)  =  tree(x1, x2, x3)
U1_aga(x1, x2, x3, x4, x5, x6)  =  U1_aga(x3, x6)
less_in_ag(x1, x2)  =  less_in_ag(x2)
s(x1)  =  s(x1)
less_out_ag(x1, x2)  =  less_out_ag(x1)
U5_ag(x1, x2, x3)  =  U5_ag(x3)
U2_aga(x1, x2, x3, x4, x5, x6)  =  U2_aga(x6)
insert_in_gga(x1, x2, x3)  =  insert_in_gga(x1, x2)
insert_out_gga(x1, x2, x3)  =  insert_out_gga(x3)
U1_gga(x1, x2, x3, x4, x5, x6)  =  U1_gga(x1, x2, x3, x4, x6)
less_in_gg(x1, x2)  =  less_in_gg(x1, x2)
0  =  0
less_out_gg(x1, x2)  =  less_out_gg
U5_gg(x1, x2, x3)  =  U5_gg(x3)
U2_gga(x1, x2, x3, x4, x5, x6)  =  U2_gga(x2, x4, x6)
U3_gga(x1, x2, x3, x4, x5, x6)  =  U3_gga(x1, x2, x3, x4, x6)
U4_gga(x1, x2, x3, x4, x5, x6)  =  U4_gga(x2, x3, x6)
U3_aga(x1, x2, x3, x4, x5, x6)  =  U3_aga(x4, x6)
less_in_ga(x1, x2)  =  less_in_ga(x1)
less_out_ga(x1, x2)  =  less_out_ga
U5_ga(x1, x2, x3)  =  U5_ga(x3)
U4_aga(x1, x2, x3, x4, x5, x6)  =  U4_aga(x6)
U1_GGA(x1, x2, x3, x4, x5, x6)  =  U1_GGA(x1, x2, x3, x4, x6)
INSERT_IN_GGA(x1, x2, x3)  =  INSERT_IN_GGA(x1, x2)
U3_GGA(x1, x2, x3, x4, x5, x6)  =  U3_GGA(x1, x2, x3, x4, x6)

We have to consider all (P,R,Pi)-chains
For (infinitary) constructor rewriting [30] we can delete all non-usable rules from R.

↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
              ↳ PiDP
              ↳ PiDP
                ↳ UsableRulesProof
PiDP
                    ↳ PiDPToQDPProof
              ↳ PiDP
              ↳ PiDP

Pi DP problem:
The TRS P consists of the following rules:

U1_GGA(X, Y, Left, Right, Left1, less_out_gg(X, Y)) → INSERT_IN_GGA(X, Left, Left1)
U3_GGA(X, Y, Left, Right, Right1, less_out_gg(Y, X)) → INSERT_IN_GGA(X, Right, Right1)
INSERT_IN_GGA(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U3_GGA(X, Y, Left, Right, Right1, less_in_gg(Y, X))
INSERT_IN_GGA(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U1_GGA(X, Y, Left, Right, Left1, less_in_gg(X, Y))

The TRS R consists of the following rules:

less_in_gg(0, s(X)) → less_out_gg(0, s(X))
less_in_gg(s(X), s(Y)) → U5_gg(X, Y, less_in_gg(X, Y))
U5_gg(X, Y, less_out_gg(X, Y)) → less_out_gg(s(X), s(Y))

The argument filtering Pi contains the following mapping:
tree(x1, x2, x3)  =  tree(x1, x2, x3)
s(x1)  =  s(x1)
less_in_gg(x1, x2)  =  less_in_gg(x1, x2)
0  =  0
less_out_gg(x1, x2)  =  less_out_gg
U5_gg(x1, x2, x3)  =  U5_gg(x3)
U1_GGA(x1, x2, x3, x4, x5, x6)  =  U1_GGA(x1, x2, x3, x4, x6)
INSERT_IN_GGA(x1, x2, x3)  =  INSERT_IN_GGA(x1, x2)
U3_GGA(x1, x2, x3, x4, x5, x6)  =  U3_GGA(x1, x2, x3, x4, x6)

We have to consider all (P,R,Pi)-chains
Transforming (infinitary) constructor rewriting Pi-DP problem [30] into ordinary QDP problem [15] by application of Pi.

↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
              ↳ PiDP
              ↳ PiDP
                ↳ UsableRulesProof
                  ↳ PiDP
                    ↳ PiDPToQDPProof
QDP
                        ↳ QDPSizeChangeProof
              ↳ PiDP
              ↳ PiDP

Q DP problem:
The TRS P consists of the following rules:

U1_GGA(X, Y, Left, Right, less_out_gg) → INSERT_IN_GGA(X, Left)
INSERT_IN_GGA(X, tree(Y, Left, Right)) → U1_GGA(X, Y, Left, Right, less_in_gg(X, Y))
INSERT_IN_GGA(X, tree(Y, Left, Right)) → U3_GGA(X, Y, Left, Right, less_in_gg(Y, X))
U3_GGA(X, Y, Left, Right, less_out_gg) → INSERT_IN_GGA(X, Right)

The TRS R consists of the following rules:

less_in_gg(0, s(X)) → less_out_gg
less_in_gg(s(X), s(Y)) → U5_gg(less_in_gg(X, Y))
U5_gg(less_out_gg) → less_out_gg

The set Q consists of the following terms:

less_in_gg(x0, x1)
U5_gg(x0)

We have to consider all (P,Q,R)-chains.
By using the subterm criterion [20] together with the size-change analysis [32] we have proven that there are no infinite chains for this DP problem.

From the DPs we obtained the following set of size-change graphs:



↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
              ↳ PiDP
              ↳ PiDP
PiDP
                ↳ UsableRulesProof
              ↳ PiDP

Pi DP problem:
The TRS P consists of the following rules:

LESS_IN_AG(s(X), s(Y)) → LESS_IN_AG(X, Y)

The TRS R consists of the following rules:

insert_in_aga(X, void, tree(X, void, void)) → insert_out_aga(X, void, tree(X, void, void))
insert_in_aga(X, tree(X, Left, Right), tree(X, Left, Right)) → insert_out_aga(X, tree(X, Left, Right), tree(X, Left, Right))
insert_in_aga(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U1_aga(X, Y, Left, Right, Left1, less_in_ag(X, Y))
less_in_ag(0, s(X)) → less_out_ag(0, s(X))
less_in_ag(s(X), s(Y)) → U5_ag(X, Y, less_in_ag(X, Y))
U5_ag(X, Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))
U1_aga(X, Y, Left, Right, Left1, less_out_ag(X, Y)) → U2_aga(X, Y, Left, Right, Left1, insert_in_gga(X, Left, Left1))
insert_in_gga(X, void, tree(X, void, void)) → insert_out_gga(X, void, tree(X, void, void))
insert_in_gga(X, tree(X, Left, Right), tree(X, Left, Right)) → insert_out_gga(X, tree(X, Left, Right), tree(X, Left, Right))
insert_in_gga(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U1_gga(X, Y, Left, Right, Left1, less_in_gg(X, Y))
less_in_gg(0, s(X)) → less_out_gg(0, s(X))
less_in_gg(s(X), s(Y)) → U5_gg(X, Y, less_in_gg(X, Y))
U5_gg(X, Y, less_out_gg(X, Y)) → less_out_gg(s(X), s(Y))
U1_gga(X, Y, Left, Right, Left1, less_out_gg(X, Y)) → U2_gga(X, Y, Left, Right, Left1, insert_in_gga(X, Left, Left1))
insert_in_gga(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U3_gga(X, Y, Left, Right, Right1, less_in_gg(Y, X))
U3_gga(X, Y, Left, Right, Right1, less_out_gg(Y, X)) → U4_gga(X, Y, Left, Right, Right1, insert_in_gga(X, Right, Right1))
U4_gga(X, Y, Left, Right, Right1, insert_out_gga(X, Right, Right1)) → insert_out_gga(X, tree(Y, Left, Right), tree(Y, Left, Right1))
U2_gga(X, Y, Left, Right, Left1, insert_out_gga(X, Left, Left1)) → insert_out_gga(X, tree(Y, Left, Right), tree(Y, Left1, Right))
U2_aga(X, Y, Left, Right, Left1, insert_out_gga(X, Left, Left1)) → insert_out_aga(X, tree(Y, Left, Right), tree(Y, Left1, Right))
insert_in_aga(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U3_aga(X, Y, Left, Right, Right1, less_in_ga(Y, X))
less_in_ga(0, s(X)) → less_out_ga(0, s(X))
less_in_ga(s(X), s(Y)) → U5_ga(X, Y, less_in_ga(X, Y))
U5_ga(X, Y, less_out_ga(X, Y)) → less_out_ga(s(X), s(Y))
U3_aga(X, Y, Left, Right, Right1, less_out_ga(Y, X)) → U4_aga(X, Y, Left, Right, Right1, insert_in_aga(X, Right, Right1))
U4_aga(X, Y, Left, Right, Right1, insert_out_aga(X, Right, Right1)) → insert_out_aga(X, tree(Y, Left, Right), tree(Y, Left, Right1))

The argument filtering Pi contains the following mapping:
insert_in_aga(x1, x2, x3)  =  insert_in_aga(x2)
void  =  void
insert_out_aga(x1, x2, x3)  =  insert_out_aga
tree(x1, x2, x3)  =  tree(x1, x2, x3)
U1_aga(x1, x2, x3, x4, x5, x6)  =  U1_aga(x3, x6)
less_in_ag(x1, x2)  =  less_in_ag(x2)
s(x1)  =  s(x1)
less_out_ag(x1, x2)  =  less_out_ag(x1)
U5_ag(x1, x2, x3)  =  U5_ag(x3)
U2_aga(x1, x2, x3, x4, x5, x6)  =  U2_aga(x6)
insert_in_gga(x1, x2, x3)  =  insert_in_gga(x1, x2)
insert_out_gga(x1, x2, x3)  =  insert_out_gga(x3)
U1_gga(x1, x2, x3, x4, x5, x6)  =  U1_gga(x1, x2, x3, x4, x6)
less_in_gg(x1, x2)  =  less_in_gg(x1, x2)
0  =  0
less_out_gg(x1, x2)  =  less_out_gg
U5_gg(x1, x2, x3)  =  U5_gg(x3)
U2_gga(x1, x2, x3, x4, x5, x6)  =  U2_gga(x2, x4, x6)
U3_gga(x1, x2, x3, x4, x5, x6)  =  U3_gga(x1, x2, x3, x4, x6)
U4_gga(x1, x2, x3, x4, x5, x6)  =  U4_gga(x2, x3, x6)
U3_aga(x1, x2, x3, x4, x5, x6)  =  U3_aga(x4, x6)
less_in_ga(x1, x2)  =  less_in_ga(x1)
less_out_ga(x1, x2)  =  less_out_ga
U5_ga(x1, x2, x3)  =  U5_ga(x3)
U4_aga(x1, x2, x3, x4, x5, x6)  =  U4_aga(x6)
LESS_IN_AG(x1, x2)  =  LESS_IN_AG(x2)

We have to consider all (P,R,Pi)-chains
For (infinitary) constructor rewriting [30] we can delete all non-usable rules from R.

↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
              ↳ PiDP
              ↳ PiDP
              ↳ PiDP
                ↳ UsableRulesProof
PiDP
                    ↳ PiDPToQDPProof
              ↳ PiDP

Pi DP problem:
The TRS P consists of the following rules:

LESS_IN_AG(s(X), s(Y)) → LESS_IN_AG(X, Y)

R is empty.
The argument filtering Pi contains the following mapping:
s(x1)  =  s(x1)
LESS_IN_AG(x1, x2)  =  LESS_IN_AG(x2)

We have to consider all (P,R,Pi)-chains
Transforming (infinitary) constructor rewriting Pi-DP problem [30] into ordinary QDP problem [15] by application of Pi.

↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
              ↳ PiDP
              ↳ PiDP
              ↳ PiDP
                ↳ UsableRulesProof
                  ↳ PiDP
                    ↳ PiDPToQDPProof
QDP
                        ↳ QDPSizeChangeProof
              ↳ PiDP

Q DP problem:
The TRS P consists of the following rules:

LESS_IN_AG(s(Y)) → LESS_IN_AG(Y)

R is empty.
Q is empty.
We have to consider all (P,Q,R)-chains.
By using the subterm criterion [20] together with the size-change analysis [32] we have proven that there are no infinite chains for this DP problem.

From the DPs we obtained the following set of size-change graphs:



↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
              ↳ PiDP
              ↳ PiDP
              ↳ PiDP
PiDP
                ↳ UsableRulesProof

Pi DP problem:
The TRS P consists of the following rules:

U3_AGA(X, Y, Left, Right, Right1, less_out_ga(Y, X)) → INSERT_IN_AGA(X, Right, Right1)
INSERT_IN_AGA(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U3_AGA(X, Y, Left, Right, Right1, less_in_ga(Y, X))

The TRS R consists of the following rules:

insert_in_aga(X, void, tree(X, void, void)) → insert_out_aga(X, void, tree(X, void, void))
insert_in_aga(X, tree(X, Left, Right), tree(X, Left, Right)) → insert_out_aga(X, tree(X, Left, Right), tree(X, Left, Right))
insert_in_aga(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U1_aga(X, Y, Left, Right, Left1, less_in_ag(X, Y))
less_in_ag(0, s(X)) → less_out_ag(0, s(X))
less_in_ag(s(X), s(Y)) → U5_ag(X, Y, less_in_ag(X, Y))
U5_ag(X, Y, less_out_ag(X, Y)) → less_out_ag(s(X), s(Y))
U1_aga(X, Y, Left, Right, Left1, less_out_ag(X, Y)) → U2_aga(X, Y, Left, Right, Left1, insert_in_gga(X, Left, Left1))
insert_in_gga(X, void, tree(X, void, void)) → insert_out_gga(X, void, tree(X, void, void))
insert_in_gga(X, tree(X, Left, Right), tree(X, Left, Right)) → insert_out_gga(X, tree(X, Left, Right), tree(X, Left, Right))
insert_in_gga(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U1_gga(X, Y, Left, Right, Left1, less_in_gg(X, Y))
less_in_gg(0, s(X)) → less_out_gg(0, s(X))
less_in_gg(s(X), s(Y)) → U5_gg(X, Y, less_in_gg(X, Y))
U5_gg(X, Y, less_out_gg(X, Y)) → less_out_gg(s(X), s(Y))
U1_gga(X, Y, Left, Right, Left1, less_out_gg(X, Y)) → U2_gga(X, Y, Left, Right, Left1, insert_in_gga(X, Left, Left1))
insert_in_gga(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U3_gga(X, Y, Left, Right, Right1, less_in_gg(Y, X))
U3_gga(X, Y, Left, Right, Right1, less_out_gg(Y, X)) → U4_gga(X, Y, Left, Right, Right1, insert_in_gga(X, Right, Right1))
U4_gga(X, Y, Left, Right, Right1, insert_out_gga(X, Right, Right1)) → insert_out_gga(X, tree(Y, Left, Right), tree(Y, Left, Right1))
U2_gga(X, Y, Left, Right, Left1, insert_out_gga(X, Left, Left1)) → insert_out_gga(X, tree(Y, Left, Right), tree(Y, Left1, Right))
U2_aga(X, Y, Left, Right, Left1, insert_out_gga(X, Left, Left1)) → insert_out_aga(X, tree(Y, Left, Right), tree(Y, Left1, Right))
insert_in_aga(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U3_aga(X, Y, Left, Right, Right1, less_in_ga(Y, X))
less_in_ga(0, s(X)) → less_out_ga(0, s(X))
less_in_ga(s(X), s(Y)) → U5_ga(X, Y, less_in_ga(X, Y))
U5_ga(X, Y, less_out_ga(X, Y)) → less_out_ga(s(X), s(Y))
U3_aga(X, Y, Left, Right, Right1, less_out_ga(Y, X)) → U4_aga(X, Y, Left, Right, Right1, insert_in_aga(X, Right, Right1))
U4_aga(X, Y, Left, Right, Right1, insert_out_aga(X, Right, Right1)) → insert_out_aga(X, tree(Y, Left, Right), tree(Y, Left, Right1))

The argument filtering Pi contains the following mapping:
insert_in_aga(x1, x2, x3)  =  insert_in_aga(x2)
void  =  void
insert_out_aga(x1, x2, x3)  =  insert_out_aga
tree(x1, x2, x3)  =  tree(x1, x2, x3)
U1_aga(x1, x2, x3, x4, x5, x6)  =  U1_aga(x3, x6)
less_in_ag(x1, x2)  =  less_in_ag(x2)
s(x1)  =  s(x1)
less_out_ag(x1, x2)  =  less_out_ag(x1)
U5_ag(x1, x2, x3)  =  U5_ag(x3)
U2_aga(x1, x2, x3, x4, x5, x6)  =  U2_aga(x6)
insert_in_gga(x1, x2, x3)  =  insert_in_gga(x1, x2)
insert_out_gga(x1, x2, x3)  =  insert_out_gga(x3)
U1_gga(x1, x2, x3, x4, x5, x6)  =  U1_gga(x1, x2, x3, x4, x6)
less_in_gg(x1, x2)  =  less_in_gg(x1, x2)
0  =  0
less_out_gg(x1, x2)  =  less_out_gg
U5_gg(x1, x2, x3)  =  U5_gg(x3)
U2_gga(x1, x2, x3, x4, x5, x6)  =  U2_gga(x2, x4, x6)
U3_gga(x1, x2, x3, x4, x5, x6)  =  U3_gga(x1, x2, x3, x4, x6)
U4_gga(x1, x2, x3, x4, x5, x6)  =  U4_gga(x2, x3, x6)
U3_aga(x1, x2, x3, x4, x5, x6)  =  U3_aga(x4, x6)
less_in_ga(x1, x2)  =  less_in_ga(x1)
less_out_ga(x1, x2)  =  less_out_ga
U5_ga(x1, x2, x3)  =  U5_ga(x3)
U4_aga(x1, x2, x3, x4, x5, x6)  =  U4_aga(x6)
U3_AGA(x1, x2, x3, x4, x5, x6)  =  U3_AGA(x4, x6)
INSERT_IN_AGA(x1, x2, x3)  =  INSERT_IN_AGA(x2)

We have to consider all (P,R,Pi)-chains
For (infinitary) constructor rewriting [30] we can delete all non-usable rules from R.

↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
              ↳ PiDP
              ↳ PiDP
              ↳ PiDP
              ↳ PiDP
                ↳ UsableRulesProof
PiDP
                    ↳ PiDPToQDPProof

Pi DP problem:
The TRS P consists of the following rules:

U3_AGA(X, Y, Left, Right, Right1, less_out_ga(Y, X)) → INSERT_IN_AGA(X, Right, Right1)
INSERT_IN_AGA(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U3_AGA(X, Y, Left, Right, Right1, less_in_ga(Y, X))

The TRS R consists of the following rules:

less_in_ga(0, s(X)) → less_out_ga(0, s(X))
less_in_ga(s(X), s(Y)) → U5_ga(X, Y, less_in_ga(X, Y))
U5_ga(X, Y, less_out_ga(X, Y)) → less_out_ga(s(X), s(Y))

The argument filtering Pi contains the following mapping:
tree(x1, x2, x3)  =  tree(x1, x2, x3)
s(x1)  =  s(x1)
0  =  0
less_in_ga(x1, x2)  =  less_in_ga(x1)
less_out_ga(x1, x2)  =  less_out_ga
U5_ga(x1, x2, x3)  =  U5_ga(x3)
U3_AGA(x1, x2, x3, x4, x5, x6)  =  U3_AGA(x4, x6)
INSERT_IN_AGA(x1, x2, x3)  =  INSERT_IN_AGA(x2)

We have to consider all (P,R,Pi)-chains
Transforming (infinitary) constructor rewriting Pi-DP problem [30] into ordinary QDP problem [15] by application of Pi.

↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
              ↳ PiDP
              ↳ PiDP
              ↳ PiDP
              ↳ PiDP
                ↳ UsableRulesProof
                  ↳ PiDP
                    ↳ PiDPToQDPProof
QDP
                        ↳ QDPSizeChangeProof

Q DP problem:
The TRS P consists of the following rules:

INSERT_IN_AGA(tree(Y, Left, Right)) → U3_AGA(Right, less_in_ga(Y))
U3_AGA(Right, less_out_ga) → INSERT_IN_AGA(Right)

The TRS R consists of the following rules:

less_in_ga(0) → less_out_ga
less_in_ga(s(X)) → U5_ga(less_in_ga(X))
U5_ga(less_out_ga) → less_out_ga

The set Q consists of the following terms:

less_in_ga(x0)
U5_ga(x0)

We have to consider all (P,Q,R)-chains.
By using the subterm criterion [20] together with the size-change analysis [32] we have proven that there are no infinite chains for this DP problem.

From the DPs we obtained the following set of size-change graphs: